Show AllShow All

Patterned Method

Sets the specified fill to a pattern.

expression.Patterned(Pattern)

expression    Required. An expression that returns one of the objects in the Applies To list.

Pattern   Required MsoPatternType.

Example

This example sets the fill pattern for chart one.

With Charts(1).ChartArea.Fill
    .Patterned msoPatternDiagonalBrick
    .Visible = True
End With